From: Chong Yidong Date: Sun, 8 Aug 2010 23:14:33 +0000 (-0400) Subject: * tutorial.el (tutorial--default-keys): C-d is now bound to delete-forward-char. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~7015 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=6d6dc1941b74dba0b99afc8b54b88a0088982f17;p=emacs.git * tutorial.el (tutorial--default-keys): C-d is now bound to delete-forward-char. (Bug#6826) --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4eb99d50632..4c35cc5d7ba 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2010-08-08 Chong Yidong + * tutorial.el (tutorial--default-keys): C-d is now bound to + delete-forward-char (Bug#6826). + * mouse.el (mouse-drag-track): Remove accidentally-removed check for `double' value of mouse-1-click-follows-link (Bug#6807). diff --git a/lisp/tutorial.el b/lisp/tutorial.el index bab943968f8..15dfe86a8df 100644 --- a/lisp/tutorial.el +++ b/lisp/tutorial.el @@ -252,7 +252,7 @@ LEFT and RIGHT are the elements to compare." ;; * INSERTING AND DELETING ;; C-u 8 * to insert ********. (delete-backward-char "\d") - (delete-char [?\C-d]) + (delete-forward-char [?\C-d]) (backward-kill-word [?\M-\d]) (kill-word [?\M-d]) (kill-line [?\C-k])